home *** CD-ROM | disk | FTP | other *** search
/ Guide To Cracking 2002 / Guide_to_Cracking_2002.iso / Utilities / Password Crackerz / Pwdump 2.exe / pwdump2.h < prev    next >
C/C++ Source or Header  |  1998-08-23  |  2KB  |  47 lines

  1. /***************************************************************************
  2.  * 
  3.  * File:    pwdump2.h
  4.  * 
  5.  * Purpose: common definitions
  6.  * 
  7.  * Date:    Sun Jun 07 12:46:59 1998
  8.  * 
  9.  * Copyright (c) 1997,1998 Todd A. Sabin, all rights reserved
  10.  *
  11.  * This program is free software; you can redistribute it and/or
  12.  * modify it under the terms of the GNU General Public License
  13.  * as published by the Free Software Foundation; either version 2
  14.  * of the License, or (at your option) any later version.
  15.  * 
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  * 
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  24.  * 
  25.  ***************************************************************************/
  26.  
  27. #ifndef PWDUMP2_H
  28. #define PWDUMP2_H
  29.  
  30. #define DUMP_PIPE_SIZE 1024
  31.  
  32. typedef HINSTANCE (WINAPI *pLoadLib_t) (CHAR *);
  33. typedef HINSTANCE (WINAPI *pGetProcAddr_t) (HINSTANCE, CHAR *);
  34. typedef HINSTANCE (WINAPI *pFreeLib_t) (HINSTANCE);
  35. typedef int (*pDumpSam_t) (CHAR *);
  36.  
  37. typedef struct _remote_info {
  38.     pLoadLib_t      pLoadLibrary;
  39.     pGetProcAddr_t pGetProcAddress;
  40.     pFreeLib_t     pFreeLibrary;
  41.     CHAR  szDllName[MAX_PATH+1];
  42.     CHAR  szProcName[MAX_PATH+1];
  43.     CHAR  szPipeName[MAX_PATH+1];
  44. } REMOTE_INFO;
  45.  
  46. #endif
  47.